f678f8d1e22153c089815447ae0d7ea702ef8194,src/main/java/com/kiroule/jpetstore/vaadinspring/ui/form/AccountForm.java,AccountForm,createContent,#,104

Before Change


    setListeners();
    setValidators();

    MFormLayout signonFormLayout = new MFormLayout(
        username,
        password,
        passwordConfirmation
    ).withWidth("");
    signonFormLayout.setStyleName(JPetStoreTheme.ACCOUNT_FORM);

    MFormLayout profileFormLayout = new MFormLayout(
        languagePreference,

After Change


    setListeners();

    MVerticalLayout content = new MVerticalLayout(
        new Panel("Sign on", new MFormLayout(
            username,
            password,
            passwordConfirmation
        ).withWidth("-1px") // undefined width
        ),
        new Panel("Profile", new MFormLayout(
            firstName,
            lastName,